localtime
Get local time
localtime()
function returns the local time.
Output local time as numeric arrays and associative arrays:
<?php print_r ( localtime ( ) ) ; echo "<br><br>" ; print_r ( localtime ( time ( ) , true ) ) ; ?>
Try it yourself